home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / setmode.asm < prev    next >
Assembly Source File  |  1985-11-22  |  512b  |  17 lines

  1. Page    60,132
  2. Title    SETMODE -- Set Mode E for GRAPH16 BASIC example.
  3. Subttl    Thomas V. Hoffmann, January 1985
  4.  
  5. Code    segment    para public 'code'
  6.     public    SetMode
  7. SetMode    proc    far
  8.  
  9.     Mov    ax,000EH    ; Set 320 by 200, 16 color mode
  10.     Int    10H
  11.  
  12.     Ret              ; Return to BASIC
  13.  
  14. SetMode    Endp
  15. Code    Ends
  16.     End
  17.